From: Chad Horohoe Date: Fri, 8 Jul 2011 22:15:29 +0000 (+0000) Subject: Wow major typo, r91763 X-Git-Tag: 1.31.0-rc.0~28971 X-Git-Url: http://git.cyclocoop.org/%22.%24info%5B?a=commitdiff_plain;h=e35a3809418d82fe9cff51a03d772fae1795c802;p=lhc%2Fweb%2Fwiklou.git Wow major typo, r91763 --- diff --git a/maintenance/cleanupTable.inc b/maintenance/cleanupTable.inc index 60f234602e..f63c6d743c 100644 --- a/maintenance/cleanupTable.inc +++ b/maintenance/cleanupTable.inc @@ -102,7 +102,7 @@ class TableCleanup extends Maintenance { $table = $params['table']; // count(*) would melt the DB for huge tables, we can estimate here - $dbr->estimateRowCount( $table, '*', '', __METHOD__ ); + $count = $dbr->estimateRowCount( $table, '*', '', __METHOD__ ); $this->init( $count, $table ); $this->output( "Processing $table...\n" );